home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Multimedia
/
Resource Library: Multimedia.iso
/
hypertxt
/
msdos
/
hydos10
/
autoexec.bat
< prev
next >
Wrap
DOS Batch File
|
1991-04-23
|
980b
|
25 lines
AUTOEXEC.BAT
Batch file run whenever the system is booted
See also <CONFIG.SYS> <SHELL>
COMMAND TYPE: External VERSION: 1.0 and up
USE: AUTOEXEC
If a batch file named AUTOEXEC.BAT exists on the drive used to start
MSDOS, then it is executed by the system when the boot procedure is
completed. It is also executed if a new primary command processor is
loaded. The primary use of AUTOEXEC is to run programs which are
required whenever the computer is used, so that you do not have to
enter them each time. For example, you may wish to load <APPEND> and
<PRINT>. It can also be used to set <PATH> and <PROMPT>, any other
environment variables you usually use, and load any RAM-resident
software.
EXAMPLE:
PATH C:\LOCAL\BIN;C:\BIN;C:\DOS C:\TC;C:\DBASE;C:\WP50
PRINT /D:LPT1 /B:512
PROMPT $e[s$e[1;69H$e[7m$t$h$h$h$e[0m$e[u$p$g
SET COMSPEC=C:\DOS\COMMAND.COM
VER